简体中文
localtime() 函数返回本地时间。
localtime()
以数值数组和关联数组的形式输出本地时间:
<?php print_r(localtime()); echo "<br><br>"; print_r(localtime(time(),true)); ?>
亲自试一试